home *** CD-ROM | disk | FTP | other *** search
/ MACD 5 / MACD 5.bin / workbench / tools / czesc_2 / mfilemode / source / menupick.c < prev    next >
C/C++ Source or Header  |  1994-09-05  |  287b  |  18 lines

  1. // MenuPick.c - Copyright © 1994 Mike Austin
  2.  
  3. #include <dos/dos.h>
  4. #include "MFileMode.h"
  5. #include "GUI.h"
  6.  
  7. int MainMENU_ABOUT(VOID)
  8. {
  9.     AlertUser(MainWnd, Version + 6, "\n\nCopyright 1994 Mike Austin\n\nAll Rights Reserved");
  10.  
  11.     return TRUE;
  12. }
  13.  
  14. int MainMENU_QUIT(VOID)
  15. {
  16.     return FALSE;
  17. }
  18.